home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- if(this._y <= 561 && _parent.life > 7 && _global.gameover == 0)
- {
- this._y += 15;
- }
- else
- {
- this._x = random(26) * 10 + 30;
- this._y = - random(500) - 500;
- }
- if(this.hitTest(_parent.drag) and _global.die == false)
- {
- _parent.drag.gotoAndPlay("die");
- _parent.shak.gotoAndPlay(1);
- this._x = random(26) * 10 + 30;
- this._y = - random(500);
- _parent.score -= 100;
- }
- }
-